pruning saw - tradução para grego
Diclib.com
Dicionário ChatGPT
Digite uma palavra ou frase em qualquer idioma 👆
Idioma:     

Tradução e análise de palavras por inteligência artificial ChatGPT

Nesta página você pode obter uma análise detalhada de uma palavra ou frase, produzida usando a melhor tecnologia de inteligência artificial até o momento:

  • como a palavra é usada
  • frequência de uso
  • é usado com mais frequência na fala oral ou escrita
  • opções de tradução de palavras
  • exemplos de uso (várias frases com tradução)
  • etimologia

pruning saw - tradução para grego

ALGORITHM IMPROVEMENT TECHNIQUE
Pruning (Algorithm); Search tree pruning; Pruning algorithms; Decision-tree pruning; Pruning (algorithm); Pruning algorithm; Pruning (decision trees)
  • Before and After pruning

pruning saw      
πριόνι κλαδέματος
πριόνι κλαδέματος      
pruning saw
buzz saw         
  • [[Allis-Chalmers B]] with a cordwood saw setup
  • Circular saw with a diamond blade for cutting asphalt and concrete.
  • Tractor-driven circular saw
  • This [[miter saw]] is a circular saw mounted to swing to crosscut wood at an angle.
  • A [[table saw]].
  • abbr=on}} blade.
POWER TOOL
Buzz saw; Skil saw; Buzz-saw; Skillsaw; Buzzsaw; Circular saw blade; Wormdrive saw; Worm drive saw
ηλεκτρικό κυκλικόν πριόνι

Definição

padsaw
¦ noun a small saw with a narrow blade, for cutting curves.

Wikipédia

Decision tree pruning

Pruning is a data compression technique in machine learning and search algorithms that reduces the size of decision trees by removing sections of the tree that are non-critical and redundant to classify instances. Pruning reduces the complexity of the final classifier, and hence improves predictive accuracy by the reduction of overfitting.

One of the questions that arises in a decision tree algorithm is the optimal size of the final tree. A tree that is too large risks overfitting the training data and poorly generalizing to new samples. A small tree might not capture important structural information about the sample space. However, it is hard to tell when a tree algorithm should stop because it is impossible to tell if the addition of a single extra node will dramatically decrease error. This problem is known as the horizon effect. A common strategy is to grow the tree until each node contains a small number of instances then use pruning to remove nodes that do not provide additional information.

Pruning should reduce the size of a learning tree without reducing predictive accuracy as measured by a cross-validation set. There are many techniques for tree pruning that differ in the measurement that is used to optimize performance.